:root {
  --bg-main: #050711;
  --bg-soft: #0b1020;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --neon-blue: #00d4ff;
  --neon-purple: #9b5cff;
  --neon-pink: #ff3df2;
  --text-main: #ffffff;
  --text-muted: #aeb6d9;
  --success: #52ffbd;
  --warning: #ffdb70;
  --danger: #ff5c8a;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 212, 255, 0.16), transparent 28%),
    radial-gradient(circle at 88% 6%, rgba(255, 61, 242, 0.14), transparent 32%),
    radial-gradient(circle at 45% 80%, rgba(155, 92, 255, 0.13), transparent 30%),
    var(--bg-main);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 90%);
  z-index: -1;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2,
.logo-text,
.logo-mark {
  font-family: "Orbitron", "Inter", sans-serif;
}

h1 {
  font-size: clamp(2.15rem, 5.2vw, 4.85rem);
  letter-spacing: -0.048em;
}

h2 {
  font-size: clamp(1.55rem, 3.1vw, 2.95rem);
  letter-spacing: -0.038em;
}

h3 {
  font-size: 1.05rem;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(5, 7, 17, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 17, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
  color: #050711;
  font-size: 0.8rem;
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.45);
}

.logo-text {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-nav a {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 9px 10px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(0, 212, 255, 0.22), 0 0 20px rgba(0, 212, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: var(--glass);
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--text-main);
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.full-hero {
  min-height: calc(100vh - var(--header-height));
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hotel-hero {
  min-height: 74vh;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.compact-hero {
  min-height: 46vh;
  padding: 92px 0;
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.16), transparent 36%),
    linear-gradient(225deg, rgba(255, 61, 242, 0.18), transparent 38%),
    rgba(11, 16, 32, 0.72);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 17, 0.9) 0%, rgba(5, 7, 17, 0.7) 42%, rgba(5, 7, 17, 0.35) 100%),
    linear-gradient(0deg, rgba(5, 7, 17, 0.96) 0%, transparent 42%);
  z-index: -1;
}

.hero-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.56;
  z-index: -1;
  animation: floatOrb 8s ease-in-out infinite;
}

.hero-orb-one {
  left: -130px;
  top: 16%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.32), transparent 68%);
}

.hero-orb-two {
  right: -130px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(255, 61, 242, 0.28), transparent 68%);
  animation-delay: -3s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -26px, 0) scale(1.08); }
}

.hero-content {
  max-width: 860px;
  padding: 92px 0;
}

.hero-content p,
.page-hero p {
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--neon-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 24px;
  color: var(--text-main);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
  box-shadow: 0 14px 38px rgba(0, 212, 255, 0.22), 0 0 40px rgba(155, 92, 255, 0.18);
}

.btn-outline,
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
}

.btn-outline:hover,
.btn-ghost:hover {
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.12);
}

.btn-small {
  min-height: 43px;
  padding: 0 18px;
  font-size: 0.88rem;
}

.btn-wide {
  width: 100%;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin-bottom: 46px;
}

.section-heading p {
  margin-inline: auto;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.section-copy p:last-of-type {
  margin-bottom: 0;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  min-height: 330px;
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.45), transparent 38%, rgba(255, 61, 242, 0.32));
  opacity: 0.26;
  z-index: 1;
}

.image-frame img {
  min-height: 330px;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
}

.glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
}

.card-grid {
  display: grid;
  gap: 24px;
}

.three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hotel-card,
.package-card,
.feature-card,
.review-card {
  overflow: hidden;
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.hotel-card:hover,
.package-card:hover,
.feature-card:hover,
.review-card:hover,
.contact-form:hover,
.contact-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 28px 90px rgba(0, 212, 255, 0.12);
}

.hotel-card img {
  height: 235px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.tag,
.price-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--neon-blue);
  border: 1px solid rgba(0, 212, 255, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
}

.card-body h3,
.package-card h3,
.feature-card h3,
.review-card h3 {
  margin-top: 16px;
}

.package-card,
.feature-card,
.review-card {
  padding: 26px;
}

.package-card > i,
.feature-card > i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 20px;
  color: var(--text-main);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.22), rgba(155, 92, 255, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.35rem;
}

.price-label {
  margin-top: 12px;
  color: var(--neon-pink);
  background: rgba(255, 61, 242, 0.1);
  border-color: rgba(255, 61, 242, 0.26);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--neon-blue);
  font-weight: 800;
}

.era-section,
.why-section,
.packages-section,
.reviews-section {
  background: linear-gradient(180deg, transparent, rgba(11, 16, 32, 0.48), transparent);
}

.narrow {
  max-width: 860px;
}

.story-section .narrow {
  padding: 38px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
}

.stars {
  color: var(--warning);
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.review-card span {
  color: var(--neon-blue);
  font-weight: 700;
}

.hotel-detail-section:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.015);
}

.contact-detail-grid,
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.contact-panel,
.contact-info-card,
.contact-form {
  padding: 34px;
}

.profile-note {
  border-left: 3px solid var(--neon-blue);
  padding-left: 16px;
  color: var(--text-main);
  background: rgba(0, 212, 255, 0.06);
  border-radius: 0 14px 14px 0;
}

.detail-list p,
.contact-info-card p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.detail-list i,
.contact-info-card i {
  color: var(--neon-blue);
  margin-top: 5px;
}

.map-card {
  min-height: 430px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: invert(0.9) hue-rotate(185deg) saturate(0.8) brightness(0.78);
}

.contact-info-stack {
  display: grid;
  gap: 24px;
}

.contact-image {
  min-height: 260px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.hours-list strong {
  color: var(--text-main);
  text-align: right;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

label {
  color: var(--text-main);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(5, 7, 17, 0.62);
  color: var(--text-main);
  font: inherit;
  padding: 15px 16px;
  outline: none;
  transition: border 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(0, 212, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
  background: rgba(5, 7, 17, 0.78);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 12px;
  color: var(--text-muted);
}

.checkbox-row input {
  width: auto;
  margin-top: 4px;
}

.form-message {
  min-height: 26px;
  margin: 12px 0 16px;
  font-weight: 800;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 76px 0 34px;
  background:
    linear-gradient(180deg, rgba(11, 16, 32, 0.42), rgba(5, 7, 17, 0.98)),
    rgba(5, 7, 17, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-glow {
  position: absolute;
  inset: auto 10% -140px 10%;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.22), transparent 68%);
  filter: blur(18px);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 0.9fr 1fr;
  gap: 38px;
}

.footer-brand p {
  max-width: 360px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--neon-blue);
}

.footer-contact p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 11px 0;
}

.footer-contact i {
  color: var(--neon-blue);
  margin-top: 4px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  transition: transform 0.25s ease, border 0.25s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  border-color: var(--neon-blue);
}

.age-badge {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin-top: 22px;
  border-radius: 28px;
  color: #050711;
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
  box-shadow: 0 0 32px rgba(255, 61, 242, 0.35);
}

.footer-bottom {
  position: relative;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.responsible-text {
  max-width: 760px;
  color: var(--text-main);
}

.footer-subtitle {
  margin-top: 26px;
}

.footer-legal-links {
  margin-top: 12px;
}

.legal-hero {
  min-height: 42vh;
}

.legal-section {
  padding-top: 82px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 24px;
}

.legal-toc h3 {
  margin-bottom: 18px;
}

.legal-toc a {
  display: block;
  color: var(--text-muted);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.legal-toc a:hover {
  color: var(--neon-blue);
  padding-left: 6px;
}

.legal-content {
  padding: 42px;
}

.legal-updated {
  margin-top: 0;
  color: var(--neon-blue);
  font-weight: 800;
}

.legal-block {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-block:first-of-type {
  border-top: 0;
  padding-top: 8px;
}

.legal-block h2 {
  margin-bottom: 18px;
}

.legal-block p {
  margin: 14px 0;
}

.legal-block a {
  color: var(--neon-blue);
  font-weight: 800;
}

.responsible-alert {
  margin: 10px 0 28px;
  padding: 20px;
  border-radius: 20px;
  color: var(--text-main);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.14), rgba(255, 61, 242, 0.12));
  border: 1px solid rgba(0, 212, 255, 0.28);
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%) translateY(130%);
  opacity: 0;
  z-index: 1200;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(5, 7, 17, 0.82);
  border: 1px solid rgba(0, 212, 255, 0.38);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.55), 0 0 42px rgba(0, 212, 255, 0.12);
  backdrop-filter: blur(20px);
}

.cookie-content h3,
.cookie-content p {
  margin: 0;
}

.cookie-content p {
  margin-top: 7px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  place-items: center;
  padding: 24px;
}

.cookie-modal.show {
  display: grid;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(10px);
}

.cookie-modal-card {
  position: relative;
  width: min(560px, 100%);
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(8, 12, 26, 0.96);
  border: 1px solid rgba(0, 212, 255, 0.32);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--glass-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  cursor: pointer;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 18px 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.toggle-row span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.switch {
  position: relative;
  width: 58px;
  height: 32px;
  flex: 0 0 58px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch span {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  transition: background 0.25s ease;
}

.switch span::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background: var(--text-main);
  transition: transform 0.25s ease;
}

.switch input:checked + span {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
}

.switch input:checked + span::before {
  transform: translateX(26px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1180px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    background: rgba(5, 7, 17, 0.96);
    backdrop-filter: blur(20px);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1040px) {
  .three-grid,
  .four-grid,
  .footer-grid,
  .contact-detail-grid,
  .contact-page-grid,
  .legal-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    background: rgba(5, 7, 17, 0.96);
    backdrop-filter: blur(20px);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 14px;
    font-size: 0.9rem;
  }

  .split-grid,
  .contact-detail-grid,
  .contact-page-grid,
  .three-grid,
  .four-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .reverse-on-mobile .section-copy {
    order: 2;
  }

  .reverse-on-mobile .image-frame {
    order: 1;
  }

  .section {
    padding: 78px 0;
  }

  .hero-content {
    padding: 72px 0;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .cookie-content {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(1.9rem, 10vw, 2.9rem);
  }

  h2 {
    font-size: clamp(1.35rem, 8vw, 2.1rem);
  }

  .logo-text {
    font-size: 0.94rem;
  }

  .logo-mark {
    width: 39px;
    height: 39px;
    border-radius: 13px;
  }

  .hero-actions,
  .cookie-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cookie-actions .btn {
    width: 100%;
  }

  .contact-panel,
  .contact-info-card,
  .contact-form,
  .story-section .narrow,
  .cookie-modal-card,
  .legal-content,
  .legal-toc {
    padding: 24px;
  }

  .hours-list li {
    display: grid;
  }

  .hours-list strong {
    text-align: left;
  }
}
